2 * Matt McCutchen's Big Integer Library
8 #include "NumberlikeArray.hh"
11 * A BigUnsigned object represents a nonnegative integer of size
12 * limited only by available memory. A BigUnsigned can be
13 * created from and converted back to most integral types,
14 * and many math operations are defined on BigUnsigneds.
16 * The number is stored as a series of blocks in a
17 * dynamically allocated array. It is as if the number
18 * were written digit by digit in base 2 ^ N, **where N is the
19 * number of bits in an unsigned long.**
21 * The memory-management details that used to be in here have
22 * been moved into NumberlikeArray, which BigUnsigned now derives from.
23 * `(NlA)' means that member(s) are declared identically in NumberlikeArray.
24 * Such members are either redeclared here to make them public or are
25 * here, commented out, for reference.
28 class BigUnsigned
: protected NumberlikeArray
<unsigned long> {
32 enum CmpRes
{ less
= -1, equal
= 0, greater
= 1 }; // Enumeration for the result of a comparison
33 typedef unsigned long Blk
; // The number block type that BigUnsigneds are built from
34 typedef NumberlikeArray
<Blk
>::Index Index
; // (NlA) Type for the index of a block in the array
35 NumberlikeArray
<Blk
>::N
; // Number of bits in a Blk
40 Index cap; // (NlA) The current allocated capacity of this BigUnsigned (in blocks)
41 Index len; // (NlA) The actual length of the number stored in this BigUnsigned (in blocks)
42 Blk *blk; // (NlA) Dynamically allocated array of the number blocks
47 // These members generally defer to those in NumberlikeArray, possibly with slight changes.
48 // It might be nice if one could request that constructors be inherited in C++.
50 BigUnsigned(int, Index c
) : NumberlikeArray
<Blk
>(0, c
) {} // Creates a BigUnsigned with a capacity
52 void zapLeadingZeros() { // Decreases len to eliminate leading zeros
53 while (len
> 0 && blk
[len
- 1] == 0)
57 //void allocate(Index c); // (NlA) Ensures the number array has at least the indicated capacity, maybe discarding contents
58 //void allocateAndCopy(Index c); // (NlA) Ensures the number array has at least the indicated capacity, preserving its contents
61 BigUnsigned() : NumberlikeArray
<Blk
>() {} // Default constructor (value is 0)
62 BigUnsigned(const BigUnsigned
&x
) : NumberlikeArray
<Blk
>(x
) {} // Copy constructor
64 void operator=(const BigUnsigned
&x
) { // Assignment operator
65 NumberlikeArray
<Blk
>::operator =(x
);
68 BigUnsigned(const Blk
*b
, Index l
) : NumberlikeArray
<Blk
>(b
, l
) { // Constructor from an array of blocks
72 // Constructors from integral types
73 BigUnsigned(unsigned long x
);
75 BigUnsigned(unsigned int x
);
77 BigUnsigned(unsigned short x
);
78 BigUnsigned( short x
);
79 ~BigUnsigned() {} // Destructor
81 // CONVERTERS to integral types
83 operator unsigned long () const;
84 operator long () const;
85 operator unsigned int () const;
86 operator int () const;
87 operator unsigned short() const;
88 operator short() const;
91 // These accessors can be used to get the pieces of the number
93 NumberlikeArray
<Blk
>::getCapacity
;
94 NumberlikeArray
<Blk
>::getLength
;
95 // Note that getBlock returns 0 if the block index is beyond the length of the number.
96 // A routine that uses this accessor can safely assume a BigUnsigned has 0s infinitely to the left.
97 Blk
getBlock(Index i
) const { return i
>= len
? 0 : blk
[i
]; }
98 // Note how we replace one level of abstraction with another. Isn't that neat?
99 bool isZero() const { return NumberlikeArray
<Blk
>::isEmpty(); } // Often convenient for loops
103 // Compares this to x like Perl's <=>
104 CmpRes
compareTo(const BigUnsigned
&x
) const;
105 // Normal comparison operators
106 // Bug fixed 2006.04.24: Only we, not the user, can pass a BigUnsigned off as a
107 // NumberlikeArray, so we have to wrap == and !=.
108 bool operator ==(const BigUnsigned
&x
) const {
109 return NumberlikeArray
<Blk
>::operator ==(x
);
111 bool operator !=(const BigUnsigned
&x
) const {
112 return NumberlikeArray
<Blk
>::operator !=(x
);
114 bool operator < (const BigUnsigned
&x
) const { return compareTo(x
) == less
; }
115 bool operator <=(const BigUnsigned
&x
) const { return compareTo(x
) != greater
; }
116 bool operator >=(const BigUnsigned
&x
) const { return compareTo(x
) != less
; }
117 bool operator > (const BigUnsigned
&x
) const { return compareTo(x
) == greater
; }
120 * BigUnsigned and BigInteger both provide three kinds of operators.
121 * Here ``big-integer'' refers to BigInteger or BigUnsigned.
123 * (1) Overloaded ``return-by-value'' operators:
124 * +, -, *, /, %, unary -.
125 * Big-integer code using these operators looks identical to
126 * code using the primitive integer types. These operators take
127 * one or two big-integer inputs and return a big-integer result,
128 * which can then be assigned to a BigInteger variable or used
129 * in an expression. Example:
130 * BigInteger a(1), b = 1;
131 * BigInteger c = a + b;
133 * (2) Overloaded assignment operators:
134 * +=, -=, *=, /=, %=, &=, |=, ^=, ++, --, flipSign.
135 * Again, these are used on big integers just like on ints.
136 * They take one writable big integer that both provides an
137 * operand and receives a result. The first eight also take
138 * a second read-only operand. Example:
139 * BigInteger a(1), b(1);
142 * (3) ``Put-here'' operations: `add', `subtract', etc.
143 * Using a return-by-value or assignment operator generally involves
144 * copy constructions and/or assignments. The ``put-here'' operations
145 * require none, but they are more of a hassle to use. Most take two
146 * read-only operands and save the result in the calling object `*this',
147 * whose previous value is ignored. `divideWithRemainder' is an exception.
148 * <<< NOTE >>>: Put-here operations do not return a value: they don't need to!!
150 * BigInteger a(43), b(7), c, d;
151 * c = a + b; // Now c == 50.
152 * c.add(a, b); // Same effect but without the two bulk-copies.
153 * c.divideWithRemainder(b, d); // 50 / 7; now d == 7 (quotient) and c == 1 (remainder).
154 * a.add(a, b); // ``Aliased'' calls now do the right thing using a
155 * // temporary copy, but see note on divideWithRemainder.
158 // PUT-HERE OPERATIONS
160 /* These 3: Two read-only operands as arguments. Result left in *this. */
161 void add(const BigUnsigned
&a
, const BigUnsigned
&b
); // Addition
162 void subtract(const BigUnsigned
&a
, const BigUnsigned
&b
); // Subtraction
163 void multiply(const BigUnsigned
&a
, const BigUnsigned
&b
); // Multiplication
165 * `a.divideWithRemainder(b, q)' is like `q = a / b, a %= b'.
166 * Semantics similar to Donald E. Knuth's are used for / and %,
167 * and these differ from the semantics of primitive-type
168 * / and % under division by zero.
169 * Look in `BigUnsigned.cc' for details.
170 * `a.divideWithRemainder(b, a)' causes an exception: it doesn't make
171 * sense to write quotient and remainder into the same variable.
173 void divideWithRemainder(const BigUnsigned
&b
, BigUnsigned
&q
);
174 void divide(const BigUnsigned
&a
, const BigUnsigned
&b
) {
176 a2
.divideWithRemainder(b
, *this);
177 // quotient now in *this
178 // don't care about remainder left in a2
180 void modulo(const BigUnsigned
&a
, const BigUnsigned
&b
) {
183 divideWithRemainder(b
, q
);
184 // remainder now in *this
185 // don't care about quotient left in q
187 // Bitwise operations. Result left in *this.
188 // These are not provided for BigIntegers; I think that using them on BigIntegers
189 // will discard the sign first.
190 void bitAnd(const BigUnsigned
&a
, const BigUnsigned
&b
); // Bitwise AND
191 void bitOr(const BigUnsigned
&a
, const BigUnsigned
&b
); // Bitwise OR
192 void bitXor(const BigUnsigned
&a
, const BigUnsigned
&b
); // Bitwise XOR
193 void bitShiftLeft(const BigUnsigned
&a
, unsigned int b
); // Bitwise left shift
194 void bitShiftRight(const BigUnsigned
&a
, unsigned int b
); // Bitwise right shift
197 // These perform the operation on this (to the left of the operator)
198 // and x (to the right of the operator) and return a new BigUnsigned with the result.
200 BigUnsigned
operator +(const BigUnsigned
&x
) const; // Addition
201 BigUnsigned
operator -(const BigUnsigned
&x
) const; // Subtraction
202 BigUnsigned
operator *(const BigUnsigned
&x
) const; // Multiplication
203 BigUnsigned
operator /(const BigUnsigned
&x
) const; // Division
204 BigUnsigned
operator %(const BigUnsigned
&x
) const; // Modular reduction
205 BigUnsigned
operator &(const BigUnsigned
&x
) const; // Bitwise AND
206 BigUnsigned
operator |(const BigUnsigned
&x
) const; // Bitwise OR
207 BigUnsigned
operator ^(const BigUnsigned
&x
) const; // Bitwise XOR
208 BigUnsigned
operator <<(unsigned int b
) const; // Bitwise left shift
209 BigUnsigned
operator >>(unsigned int b
) const; // Bitwise right shift
210 // Additional operators in an attempt to avoid overloading tangles.
211 BigUnsigned
operator <<(int b
) const;
212 BigUnsigned
operator >>(int b
) const;
214 // ASSIGNMENT OPERATORS
215 // These perform the operation on this and x, storing the result into this.
217 void operator +=(const BigUnsigned
&x
); // Addition
218 void operator -=(const BigUnsigned
&x
); // Subtraction
219 void operator *=(const BigUnsigned
&x
); // Multiplication
220 void operator /=(const BigUnsigned
&x
); // Division
221 void operator %=(const BigUnsigned
&x
); // Modular reduction
222 void operator &=(const BigUnsigned
&x
); // Bitwise AND
223 void operator |=(const BigUnsigned
&x
); // Bitwise OR
224 void operator ^=(const BigUnsigned
&x
); // Bitwise XOR
225 void operator <<=(unsigned int b
); // Bitwise left shift
226 void operator >>=(unsigned int b
); // Bitwise right shift
227 // Additional operators in an attempt to avoid overloading tangles.
228 void operator <<=(int b
);
229 void operator >>=(int b
);
231 // INCREMENT/DECREMENT OPERATORS
232 // These increase or decrease the number by 1. To discourage side effects,
233 // these do not return *this, so prefix and postfix behave the same.
235 void operator ++( ); // Prefix increment
236 void operator ++(int); // Postfix decrement
237 void operator --( ); // Prefix increment
238 void operator --(int); // Postfix decrement
240 // Helper function that needs access to BigUnsigned internals
241 friend Blk
getShiftedBlock(const BigUnsigned
&num
, Index x
, unsigned int y
);
245 /* These create an object to hold the result and invoke
246 * the appropriate put-here operation on it, passing
247 * this and x. The new object is then returned. */
248 inline BigUnsigned
BigUnsigned::operator +(const BigUnsigned
&x
) const {
253 inline BigUnsigned
BigUnsigned::operator -(const BigUnsigned
&x
) const {
255 ans
.subtract(*this, x
);
258 inline BigUnsigned
BigUnsigned::operator *(const BigUnsigned
&x
) const {
260 ans
.multiply(*this, x
);
263 inline BigUnsigned
BigUnsigned::operator /(const BigUnsigned
&x
) const {
265 ans
.divide(*this, x
);
268 inline BigUnsigned
BigUnsigned::operator %(const BigUnsigned
&x
) const {
270 ans
.modulo(*this, x
);
273 inline BigUnsigned
BigUnsigned::operator &(const BigUnsigned
&x
) const {
275 ans
.bitAnd(*this, x
);
278 inline BigUnsigned
BigUnsigned::operator |(const BigUnsigned
&x
) const {
283 inline BigUnsigned
BigUnsigned::operator ^(const BigUnsigned
&x
) const {
285 ans
.bitXor(*this, x
);
288 inline BigUnsigned
BigUnsigned::operator <<(unsigned int b
) const {
290 ans
.bitShiftLeft(*this, b
);
293 inline BigUnsigned
BigUnsigned::operator >>(unsigned int b
) const {
295 ans
.bitShiftRight(*this, b
);
298 inline BigUnsigned
BigUnsigned::operator <<(int b
) const {
300 throw "BigUnsigned::operator <<(int): Negative shift amounts are not supported";
301 return *this << (unsigned int)(b
);
303 inline BigUnsigned
BigUnsigned::operator >>(int b
) const {
305 throw "BigUnsigned::operator >>(int): Negative shift amounts are not supported";
306 return *this >> (unsigned int)(b
);
310 * ASSIGNMENT OPERATORS
312 * Now the responsibility for making a temporary copy if necessary
313 * belongs to the put-here operations. I made this change on 2007.02.13 after
314 * Boris Dessy pointed out that the old implementation handled calls like
315 * "a *= a" badly: it translated them to essentially "a.multiply(aCopy, a)",
316 * which threw an exception.
318 inline void BigUnsigned::operator +=(const BigUnsigned
&x
) {
321 inline void BigUnsigned::operator -=(const BigUnsigned
&x
) {
324 inline void BigUnsigned::operator *=(const BigUnsigned
&x
) {
327 inline void BigUnsigned::operator /=(const BigUnsigned
&x
) {
328 // Updated for divideWithRemainder
329 BigUnsigned
thisCopy(*this);
330 thisCopy
.divideWithRemainder(x
, *this);
331 // quotient left in *this
332 // don't care about remainder left in thisCopy
334 inline void BigUnsigned::operator %=(const BigUnsigned
&x
) {
335 // Shortcut (woohoo!)
337 divideWithRemainder(x
, q
);
338 // remainder left in *this
339 // don't care about quotient left in q
341 inline void BigUnsigned::operator &=(const BigUnsigned
&x
) {
344 inline void BigUnsigned::operator |=(const BigUnsigned
&x
) {
347 inline void BigUnsigned::operator ^=(const BigUnsigned
&x
) {
350 inline void BigUnsigned::operator <<=(unsigned int b
) {
351 bitShiftLeft(*this, b
);
353 inline void BigUnsigned::operator >>=(unsigned int b
) {
354 bitShiftRight(*this, b
);
356 inline void BigUnsigned::operator <<=(int b
) {
358 throw "BigUnsigned::operator <<=(int): Negative shift amounts are not supported";
359 *this <<= (unsigned int)(b
);
361 inline void BigUnsigned::operator >>=(int b
) {
363 throw "BigUnsigned::operator >>=(int): Negative shift amounts are not supported";
364 *this >>= (unsigned int)(b
);